home *** CD-ROM | disk | FTP | other *** search
/ Personal Computer World 2009 February / PCWFEB09.iso / Software / Linux / SLAX 6.0.8 / slax-6.0.8.iso / slax / base / 006-devel.lzm / usr / include / kopete / kopeteversion.h < prev    next >
Encoding:
C/C++ Source or Header  |  2007-10-08  |  1.2 KB  |  30 lines

  1. /*
  2.     Kopete    (c) 2002-2005 by the Kopete developers  <kopete-devel@kde.org>
  3.  
  4.     *************************************************************************
  5.     *                                                                       *
  6.     * This program is free software; you can redistribute it and/or modify  *
  7.     * it under the terms of the GNU General Public License as published by  *
  8.     * the Free Software Foundation; either version 2 of the License, or     *
  9.     * (at your option) any later version.                                   *
  10.     *                                                                       *
  11.     *************************************************************************
  12. */
  13.  
  14. #ifndef _KOPETE_VERSION_H_
  15. #define _KOPETE_VERSION_H_
  16.  
  17. #define KOPETE_VERSION_STRING "0.12.7"
  18. #define KOPETE_VERSION_MAJOR 0
  19. #define KOPETE_VERSION_MINOR 12
  20. #define KOPETE_VERSION_RELEASE 7
  21. #define KOPETE_MAKE_VERSION( a,b,c ) (((a) << 16) | ((b) << 8) | (c))
  22.  
  23. #define KOPETE_VERSION \
  24.   KOPETE_MAKE_VERSION(KOPETE_VERSION_MAJOR,KOPETE_VERSION_MINOR,KOPETE_VERSION_RELEASE)
  25.  
  26. #define KOPETE_IS_VERSION(a,b,c) ( KOPETE_VERSION >= KOPETE_MAKE_VERSION(a,b,c) )
  27.  
  28.  
  29. #endif // _KOPETE_VERSION_H_
  30.